Merge version_1 into main #2
@@ -95,7 +95,7 @@ export default function AboutPage() {
|
||||
enableKpiAnimation={true}
|
||||
mediaAnimation="blur-reveal"
|
||||
background="radial-gradient"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/look-this-data_1098-14958.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/look-this-data_1098-14958.jpg?_wi=2"
|
||||
imageAlt="students studying together notes marketplace"
|
||||
/>
|
||||
</div>
|
||||
@@ -165,25 +165,25 @@ export default function AboutPage() {
|
||||
{
|
||||
id: "founder-1",
|
||||
name: "Alex Johnson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-student-smiling_23-2148586534.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-student-smiling_23-2148586534.jpg?_wi=2",
|
||||
imageAlt: "Alex Johnson, Co-founder",
|
||||
},
|
||||
{
|
||||
id: "founder-2",
|
||||
name: "Maya Patel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-smiling-camera_74855-2090.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-smiling-camera_74855-2090.jpg?_wi=2",
|
||||
imageAlt: "Maya Patel, Co-founder",
|
||||
},
|
||||
{
|
||||
id: "team-member-1",
|
||||
name: "David Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-hipster-black-man-posing-isolated-white-studio-wall-background-stylish-outfit-funny-afro-hairstyle-smiling-happy-confident-arms-crossed-chest_285396-2947.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-hipster-black-man-posing-isolated-white-studio-wall-background-stylish-outfit-funny-afro-hairstyle-smiling-happy-confident-arms-crossed-chest_285396-2947.jpg?_wi=2",
|
||||
imageAlt: "David Chen, Head of Operations",
|
||||
},
|
||||
{
|
||||
id: "team-member-2",
|
||||
name: "Rebecca Williams",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/students-career-university-concept-dreamy-beautiful-young-woman-with-red-hair-lean-bookshelf-smiling-looking-away-window-library-studying-dream-get-test-exam_197531-30461.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/students-career-university-concept-dreamy-beautiful-young-woman-with-red-hair-lean-bookshelf-smiling-looking-away-window-library-studying-dream-get-test-exam_197531-30461.jpg?_wi=2",
|
||||
imageAlt: "Rebecca Williams, Head of Community",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,27 +1,60 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Studify - Buy & Sell Academic Notes",
|
||||
description: "Access affordable peer-reviewed study materials from real students. Earn money sharing your notes. Commission-based peer-to-peer marketplace for academic success.",
|
||||
keywords: "buy notes, sell notes, student marketplace, study materials, academic notes, peer-to-peer, education platform",
|
||||
metadataBase: new URL("https://studify.com"),
|
||||
alternates: {
|
||||
canonical: "https://studify.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Studify - Buy & Sell Notes From Real Students",
|
||||
description: "Connect with your academic community. Access affordable notes. Earn supplemental income. Join thousands of students on Studify.",
|
||||
url: "https://studify.com",
|
||||
siteName: "Studify",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/look-this-data_1098-14958.jpg",
|
||||
alt: "Studify peer-to-peer academic marketplace",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Studify - Buy & Sell Notes From Real Students",
|
||||
description: "Access affordable study materials. Earn money sharing your notes. Join the academic community.",
|
||||
images: ["http://img.b2bpic.net/free-photo/look-this-data_1098-14958.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -31,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -99,7 +99,7 @@ export default function HomePage() {
|
||||
enableKpiAnimation={true}
|
||||
mediaAnimation="blur-reveal"
|
||||
background="radial-gradient"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/look-this-data_1098-14958.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/look-this-data_1098-14958.jpg?_wi=1"
|
||||
imageAlt="students studying together notes marketplace"
|
||||
/>
|
||||
</div>
|
||||
@@ -315,25 +315,25 @@ export default function HomePage() {
|
||||
{
|
||||
id: "student-1",
|
||||
name: "Sarah Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-smiling-camera_74855-2090.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-smiling-camera_74855-2090.jpg?_wi=1",
|
||||
imageAlt: "young female student smiling portrait",
|
||||
},
|
||||
{
|
||||
id: "student-2",
|
||||
name: "Marcus Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-hipster-black-man-posing-isolated-white-studio-wall-background-stylish-outfit-funny-afro-hairstyle-smiling-happy-confident-arms-crossed-chest_285396-2947.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-hipster-black-man-posing-isolated-white-studio-wall-background-stylish-outfit-funny-afro-hairstyle-smiling-happy-confident-arms-crossed-chest_285396-2947.jpg?_wi=1",
|
||||
imageAlt: "young male student smiling portrait",
|
||||
},
|
||||
{
|
||||
id: "student-3",
|
||||
name: "Emily Patterson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/students-career-university-concept-dreamy-beautiful-young-woman-with-red-hair-lean-bookshelf-smiling-looking-away-window-library-studying-dream-get-test-exam_197531-30461.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/students-career-university-concept-dreamy-beautiful-young-woman-with-red-hair-lean-bookshelf-smiling-looking-away-window-library-studying-dream-get-test-exam_197531-30461.jpg?_wi=1",
|
||||
imageAlt: "young woman student smiling portrait",
|
||||
},
|
||||
{
|
||||
id: "student-4",
|
||||
name: "James Thompson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-student-smiling_23-2148586534.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-student-smiling_23-2148586534.jpg?_wi=1",
|
||||
imageAlt: "young male student portrait smiling",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user