diff --git a/app/blog/[slug]/components/NewsDetailsContent.tsx b/app/blog/[slug]/components/NewsDetailsContent.tsx new file mode 100644 index 0000000..569f7c8 --- /dev/null +++ b/app/blog/[slug]/components/NewsDetailsContent.tsx @@ -0,0 +1,226 @@ +import Link from "next/link"; + +export default function NewsDetailsContent() { + return ( +
+
+
+ img +
+
+
    +
  • + + By Admin +
  • +
  • + + 11 March 2025 +
  • +
  • + + 0 Comments +
  • +
+

Work Visa vs. Student Visa Which is Right for You?

+

+ Choosing between a work visa and a student visa depends on your career and academic goals. A + student visa allows you to pursue higher education abroad, gain international exposure, and + sometimes work part-time while studying. On the other hand, a work visa is for professionals + seeking employment opportunities and long-term career growth in another country. +

+

+ Both options have unique benefits, eligibility requirements, and future pathways. Understanding + your personal ambitions, financial plans, and long-term vision will help you decide which visa + option best suits your journey. +

+

Work Visa vs. Student Visa: Which is Right for You?

+

+ Choosing between a student visa and a work visa is a major decision that shapes your future + abroad. Both visa types open unique opportunities, but the right choice depends on your goals, + priorities, and resources. A student visa is designed for individuals who wish to pursue higher + education in a foreign country. +

+
+
+
+ img +
+
+
+
+ img +
+
+
+
+
+ This blog really helped me understand the difference between student and work visas. The + explanations were clear and practical. +
+
+

+ It provides access to world-class universities, cultural exposure, and global networking + opportunities. With a student visa, you may also get part-time work rights, which can help support + your expenses and give you valuable international work experience. However, the primary focus + remains on academics and personal growth. On the other hand, a work visa is perfect for those who + want to establish themselves in a career overseas. +

+

+ It provides immediate access to job markets, stable income, and often a pathway to permanent + residency. Work visas are suitable for skilled professionals who are ready to contribute to the + global workforce and achieve long-term career goals. Ultimately, the choice comes down to your + personal aspirations. If education and exploration are your priorities, a student visa is ideal. If + career advancement and stability are your goals, a work visa is the right fit. +

+
+
+
+ Tags: + WorkVisa + FamilyVisa + StudentVisa +
+
+
+ +
+
+
+
+

02 Comments

+
+
+
+ image +
+
+
+
+ February 10, 2024 +

Frank Flores

+
+ + Reply + +
+

+ Neque porro est qui dolorem ipsum quia quaed inventor veritatis et quasi architecto var sed + efficitur turpis gilla sed sit amet finibus eros. Lorem Ipsum is simply dummy +

+
+
+
+
+ image +
+
+
+
+

Charlie Tushar

+ February 10, 2024 +
+ + Reply + +
+

+ Neque porro est qui dolorem ipsum quia quaed inventor veritatis et quasi architecto var sed + efficitur turpis gilla sed sit amet finibus eros. Lorem Ipsum is simply dummy +

+
+
+
+
+ image +
+
+
+
+ February 10, 2024 +

Fatma Sariqul

+
+ + Reply + +
+

+ Neque porro est qui dolorem ipsum quia quaed inventor veritatis et quasi architecto var sed + efficitur turpis gilla sed sit amet finibus eros. Lorem Ipsum is simply dummy +

+
+
+
+

Leave A Comment

+
+
+
+
+ Your Name + +
+
+
+
+ Your Email + +
+
+
+
+ Your Phone + +
+
+
+
+ Your Address + +
+
+
+
+ Your Date + +
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+ ); +} diff --git a/app/blog/[slug]/components/NewsDetailsSection.tsx b/app/blog/[slug]/components/NewsDetailsSection.tsx new file mode 100644 index 0000000..8f088f7 --- /dev/null +++ b/app/blog/[slug]/components/NewsDetailsSection.tsx @@ -0,0 +1,17 @@ +import NewsDetailsContent from "./NewsDetailsContent"; +import Sidebar from "@/app/blog/components/Sidebar"; + +export default function NewsDetailsSection() { + return ( +
+
+
+
+ + +
+
+
+
+ ); +} diff --git a/app/blog/[slug]/page.tsx b/app/blog/[slug]/page.tsx new file mode 100644 index 0000000..eec7592 --- /dev/null +++ b/app/blog/[slug]/page.tsx @@ -0,0 +1,17 @@ +import Breadcrumb from "@/app/components/Breadcrumb"; +import NewsDetailsSection from "./components/NewsDetailsSection"; + +interface BlogDetailsPageProps { + params: { + slug: string; + }; +} + +export default function BlogDetailsPage(_props: BlogDetailsPageProps) { + return ( + <> + + + + ); +} diff --git a/app/blog/components/Breadcrumb.tsx b/app/blog/components/Breadcrumb.tsx deleted file mode 100644 index 2be740c..0000000 --- a/app/blog/components/Breadcrumb.tsx +++ /dev/null @@ -1,23 +0,0 @@ -export default function Breadcrumb() { - return ( -
-
- img -
-
-
-

Blog Stardard

-
    -
  • - Home -
  • -
  • - -
  • -
  • Blog Stardard
  • -
-
-
-
- ); -} \ No newline at end of file diff --git a/app/blog/components/NewsList.tsx b/app/blog/components/NewsList.tsx index fe2c610..cb1736c 100644 --- a/app/blog/components/NewsList.tsx +++ b/app/blog/components/NewsList.tsx @@ -1,3 +1,5 @@ +import Link from "next/link"; + export default function NewsList() { return (
@@ -19,14 +21,14 @@ export default function NewsList() {

- How to Avoid Common Mistakes in Visa Applications + How to Avoid Common Mistakes in Visa Applications

A business consultant provides expert guidance, strategic planning, and problem-solving support—helping startups avoid mistakes, grow faster, and operate more efficiently from day one.

- + VIEW MORE - +
{/* News Post 2 */} @@ -47,14 +49,14 @@ export default function NewsList() {

- The Role of Immigration Consultants in Your Journey + The Role of Immigration Consultants in Your Journey

Immigration consultants play a vital role in guiding applicants, simplifying complex processes, offering expert advice, and ensuring successful outcomes for study, work, or permanent residency abroad.

- + VIEW MORE - + {/* News Post 3 */} @@ -75,14 +77,14 @@ export default function NewsList() {

- Latest Immigration Policy Updates You Should Know + Latest Immigration Policy Updates You Should Know

Stay informed with the latest immigration policy updates, ensuring you understand new rules, visa requirements, and opportunities that impact your study, work, or migration journey abroad.

- + VIEW MORE - + diff --git a/app/blog/components/Sidebar.tsx b/app/blog/components/Sidebar.tsx index 19e2c73..2842f4c 100644 --- a/app/blog/components/Sidebar.tsx +++ b/app/blog/components/Sidebar.tsx @@ -1,3 +1,5 @@ +import Link from "next/link"; + export default function Sidebar() { return (
@@ -16,15 +18,15 @@ export default function Sidebar() { {/* Categories */}
-

Cetegories

+

Categories

@@ -40,7 +42,7 @@ export default function Sidebar() {
- Top Countries for Higher Education in 2025 + Top Countries for Higher Education in 2025
  • March 26, 2025
  • @@ -53,7 +55,7 @@ export default function Sidebar() {
- The Benefits of Hiring a Visa Consultant + The Benefits of Hiring a Visa Consultant
  • March 26, 2025
  • @@ -66,7 +68,7 @@ export default function Sidebar() {
- How to Prepare for Your Immigration Interview + How to Prepare for Your Immigration Interview
  • March 26, 2025
  • @@ -82,12 +84,12 @@ export default function Sidebar() {
- WorkVisa - FamilyVisa - StudentVisa - VisaUpdates - TravelVisa - StudyAbroad + WorkVisa + FamilyVisa + StudentVisa + VisaUpdates + TravelVisa + StudyAbroad
diff --git a/app/blog/page.tsx b/app/blog/page.tsx index 90f5250..50883a4 100644 --- a/app/blog/page.tsx +++ b/app/blog/page.tsx @@ -1,10 +1,10 @@ -import Breadcrumb from "./components/Breadcrumb"; +import Breadcrumb from "@/app/components/Breadcrumb"; import NewsSection from "./components/NewsSection"; export default function NewsPage() { return ( <> - + ); diff --git a/app/components/BackToTop.tsx b/app/components/BackToTop.tsx new file mode 100644 index 0000000..bc2ce0d --- /dev/null +++ b/app/components/BackToTop.tsx @@ -0,0 +1,7 @@ +export default function BackToTop() { + return ( + + ); +} diff --git a/app/components/Breadcrumb.tsx b/app/components/Breadcrumb.tsx new file mode 100644 index 0000000..79c902b --- /dev/null +++ b/app/components/Breadcrumb.tsx @@ -0,0 +1,31 @@ +interface BreadcrumbProps { + title: string; + current: string; +} + +export default function Breadcrumb({ title, current }: BreadcrumbProps) { + return ( +
+
+ img +
+
+
+

{title}

+
    +
  • + Home +
  • +
  • + +
  • +
  • {current}
  • +
+
+
+
+ ); +} diff --git a/app/components/Loader.tsx b/app/components/Loader.tsx new file mode 100644 index 0000000..bcb074e --- /dev/null +++ b/app/components/Loader.tsx @@ -0,0 +1,49 @@ +"use client"; + +import { useEffect, useState } from "react"; + +export default function Loader() { + const [show, setShow] = useState(true); + + useEffect(() => { + const timer = setTimeout(() => setShow(false), 700); + return () => clearTimeout(timer); + }, []); + + if (!show) return null; + + return ( +
+
+
+
+ V + I + S + A + W + A + Y +
+

Loading

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ); +} + diff --git a/app/components/MouseCursor.tsx b/app/components/MouseCursor.tsx new file mode 100644 index 0000000..d9de8bf --- /dev/null +++ b/app/components/MouseCursor.tsx @@ -0,0 +1,8 @@ +export default function MouseCursor() { + return ( + <> +
+
+ + ); +} diff --git a/app/layout.tsx b/app/layout.tsx index 7756023..8e0e12f 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,13 +1,14 @@ import type { Metadata } from "next"; +import "./globals.css"; + + +import Header from "./components/Header"; +import Footer from "./components/Footer"; +import Loader from "./components/Loader"; +import BackToTop from "./components/BackToTop"; +import MouseCursor from "./components/MouseCursor"; import Script from "next/script"; -// Import global styles locally if needed, but linking via head is safer for legacy assets -// import "./globals.css"; - -import Header from "./components/layout/Header/Header"; -import Footer from "./components/layout/Footer/Footer"; -import Preloader from "./components/common/Preloader"; - export const metadata: Metadata = { title: "Visaway – Immigration & Visa Consulting HTML Template", description: "Visaway – Immigration & Visa Consulting HTML Template", @@ -43,19 +44,10 @@ export default function RootLayout({ {/* Main.css */} - - - - - {/* Mouse Cursor */} -
-
- - {/* Back To Top */} - - + + + +
{children}