Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 32a83eb0b7 | |||
| 244be118fc | |||
| 737fed6282 | |||
| 4aa08b0348 | |||
| f49f75b45f | |||
| e6f7118462 | |||
| 9f6c03e8b1 | |||
| e115a1a46b | |||
| e77cd36cf3 |
@@ -1,34 +1,29 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FrameFlow Studios | Short Film Production & Creative Services", description: "Award-winning short film production studio. We create compelling visual stories, commercials, and documentaries. Submit your ideas, collaborate with us, or shop exclusive merch.", keywords: "short film production, filmmaking, video production, creative studio, film production services, commercial videos", metadataBase: new URL("https://frameflowstudios.com"),
|
||||
title: "Penfold Studio | Short Film Production Company", description: "Penfold Studio: Award-winning short film production company specializing in cinematic storytelling, visual narratives, and innovative film projects. Create compelling short films with us.", keywords: "short film production, film production company, cinematic storytelling, short films, video production, film projects, creative filmmaking", metadataBase: new URL("https://penfoldstudio.com"),
|
||||
alternates: {
|
||||
canonical: "https://frameflowstudios.com"
|
||||
canonical: "https://penfoldstudio.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "FrameFlow Studios | Short Film Production", description: "Crafting compelling short films and creative visual content that inspire and connect audiences.", url: "https://frameflowstudios.com", siteName: "FrameFlow Studios", type: "website"
|
||||
title: "Penfold Studio | Short Film Production", description: "Award-winning short film production company specializing in cinematic storytelling and visual narratives.", url: "https://penfoldstudio.com", siteName: "Penfold Studio", type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "FrameFlow Studios | Professional Film Production", description: "Collaborative short film production and creative services for filmmakers and brands."
|
||||
card: "summary_large_image", title: "Penfold Studio | Short Film Production", description: "Create compelling short films with award-winning cinematic production."
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
@@ -45,7 +40,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
className={`${poppins.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1420,4 +1415,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
150
src/app/page.tsx
150
src/app/page.tsx
@@ -11,7 +11,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar
|
||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Sparkles, Scissors, Palette, Volume2, Lightbulb, Users, Zap, Star } from "lucide-react";
|
||||
import { Film, Video, Clapperboard, Lightbulb, Users, Zap, Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -29,35 +29,35 @@ export default function LandingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="FrameFlow Studios"
|
||||
brandName="Penfold Studio"
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Our Work", id: "work" },
|
||||
{ name: "Projects", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Merch", id: "merch" },
|
||||
{ name: "Packages", id: "merch" },
|
||||
{ name: "Connect", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Submit Ideas", href: "contact" }}
|
||||
button={{ text: "Get in Touch", href: "contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="FRAMEFLOW"
|
||||
description="Crafting compelling short films that captivate, inspire, and connect audiences to powerful stories."
|
||||
logoText="PENFOLD"
|
||||
description="Crafting compelling short films that captivate audiences through cinematic storytelling, innovative visual narratives, and production excellence."
|
||||
buttons={[
|
||||
{ text: "View Our Portfolio", href: "work" },
|
||||
{ text: "Get Started", href: "contact" }
|
||||
{ text: "View Our Films", href: "work" },
|
||||
{ text: "Start Your Project", href: "contact" }
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-photo-camera_23-2149537027.jpg", imageAlt: "Film Production Set"
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=1", imageAlt: "Penfold Studio Film Production"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-movie-camera-lens-movie-set_1268-15949.jpg", imageAlt: "Professional Video Camera"
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=2", imageAlt: "Cinematic Excellence"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-cameraman-recording-poeple-watching-football-public-place-night_1268-18138.jpg?_wi=1", imageAlt: "Director at Work"
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=3", imageAlt: "Visual Storytelling"
|
||||
}
|
||||
]}
|
||||
autoplayDelay={4000}
|
||||
@@ -67,11 +67,11 @@ export default function LandingPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Who We Are"
|
||||
description="At FrameFlow Studios, we're a passionate collective of filmmakers, cinematographers, and storytellers dedicated to creating short films that leave lasting impressions. We transform ideas into visual experiences that resonate with audiences worldwide."
|
||||
title="About Penfold Studio"
|
||||
description="At Penfold Studio, we specialize in short film production that combines artistic vision with technical excellence. Our experienced team of directors, cinematographers, and editors collaborate to create compelling visual stories that resonate with audiences. From concept development to final delivery, we bring cinematic quality to every project."
|
||||
tag="About Us"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/artists-doing-touch-ups-model_53876-139545.jpg"
|
||||
imageAlt="FrameFlow Creative Team"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=4"
|
||||
imageAlt="Penfold Studio Production Team"
|
||||
buttons={[{ text: "Learn More", href: "#services" }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -79,21 +79,21 @@ export default function LandingPage() {
|
||||
|
||||
<div id="work" data-section="work">
|
||||
<ProductCardTwo
|
||||
title="Featured Works"
|
||||
description="Explore our portfolio of award-winning short films and creative productions that showcase our expertise in visual storytelling."
|
||||
title="Our Film Projects"
|
||||
description="Discover our portfolio of award-winning short films and creative projects that showcase our expertise in cinematic storytelling and visual production excellence."
|
||||
tag="Portfolio"
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "FrameFlow Studios", name: "Echoes of Tomorrow", price: "Drama | 15min", rating: 5,
|
||||
reviewCount: "12.4k", imageSrc: "http://img.b2bpic.net/free-photo/professional-cameraman-recording-poeple-watching-football-public-place-night_1268-18138.jpg?_wi=2", imageAlt: "Echoes of Tomorrow Short Film"
|
||||
id: "1", brand: "Penfold Studio", name: "Cinematic Short Film", price: "Production | Cinematography", rating: 5,
|
||||
reviewCount: "12 Awards", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=5", imageAlt: "Cinematic Short Film"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "FrameFlow Studios", name: "Urban Dreams", price: "Commercial | 30sec", rating: 5,
|
||||
reviewCount: "8.9k", imageSrc: "http://img.b2bpic.net/free-photo/professional-cameraman-recording-poeple-watching-football-public-place-night_1268-18138.jpg?_wi=3", imageAlt: "Urban Dreams Commercial"
|
||||
id: "2", brand: "Penfold Studio", name: "Documentary Short", price: "Production | Documentary", rating: 5,
|
||||
reviewCount: "8 Awards", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=6", imageAlt: "Documentary Short"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "FrameFlow Studios", name: "Voices Unheard", price: "Documentary | 20min", rating: 5,
|
||||
reviewCount: "15.2k", imageSrc: "http://img.b2bpic.net/free-photo/professional-cameraman-recording-poeple-watching-football-public-place-night_1268-18138.jpg?_wi=4", imageAlt: "Voices Unheard Documentary"
|
||||
id: "3", brand: "Penfold Studio", name: "Narrative Film Project", price: "Production | Editing", rating: 5,
|
||||
reviewCount: "15 Awards", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=7", imageAlt: "Narrative Film Project"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -105,29 +105,29 @@ export default function LandingPage() {
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureBento
|
||||
title="What We Offer"
|
||||
description="From concept to final cut, we deliver comprehensive film production services tailored to your vision."
|
||||
title="Our Services"
|
||||
description="From pre-production planning to post-production finishing, we offer comprehensive short film production services tailored to your creative vision."
|
||||
tag="Services"
|
||||
features={[
|
||||
{
|
||||
title: "Short Film Production", description: "Complete production services from pre-production planning to post-production mastery.", bentoComponent: "globe"
|
||||
title: "Pre-Production & Development", description: "Complete project planning from concept to script, storyboarding, and production design.", bentoComponent: "globe"
|
||||
},
|
||||
{
|
||||
title: "Commercial Content", description: "High-impact promotional videos and advertisements for brands and businesses.", bentoComponent: "animated-bar-chart"
|
||||
title: "Cinematography & Shooting", description: "Professional filming with state-of-the-art equipment and experienced cinematography teams.", bentoComponent: "animated-bar-chart"
|
||||
},
|
||||
{
|
||||
title: "Story Development", description: "Collaborative scriptwriting and conceptualization for your unique vision.", bentoComponent: "marquee", centerIcon: Sparkles,
|
||||
variant: "text", texts: ["Original Stories", "Creative Direction", "Narrative Excellence", "Visual Innovation"]
|
||||
title: "Creative Direction & Production", description: "Artistic vision and technical excellence guiding every aspect of your film production.", bentoComponent: "marquee", centerIcon: Film,
|
||||
variant: "text", texts: ["Cinematic Vision", "Production Excellence", "Visual Storytelling", "Creative Innovation"]
|
||||
},
|
||||
{
|
||||
title: "Post-Production", description: "Professional editing, color grading, sound design, and visual effects.", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: Scissors, label: "Editing", value: "Expert" },
|
||||
{ icon: Palette, label: "Color Grade", value: "Professional" },
|
||||
{ icon: Volume2, label: "Sound Design", value: "Premium" }
|
||||
title: "Post-Production & Editing", description: "Professional editing, color grading, sound design, and final mastering for cinema-quality delivery.", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: Video, label: "Editing", value: "Expert" },
|
||||
{ icon: Clapperboard, label: "Grading", value: "Premium" },
|
||||
{ icon: Film, label: "Mastering", value: "Professional" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Collaborative Ideas", description: "We welcome your suggestions and ideas to bring fresh perspectives to every project.", bentoComponent: "orbiting-icons", centerIcon: Lightbulb,
|
||||
title: "Collaborative Partnership", description: "We work closely with creators and organizations to bring their vision to life with technical expertise and artistic passion.", bentoComponent: "orbiting-icons", centerIcon: Lightbulb,
|
||||
items: [
|
||||
{ icon: Users, ring: 1 },
|
||||
{ icon: Zap, ring: 1 },
|
||||
@@ -144,26 +144,26 @@ export default function LandingPage() {
|
||||
|
||||
<div id="merch" data-section="merch">
|
||||
<PricingCardNine
|
||||
title="Official Merch"
|
||||
description="Show your support for FrameFlow Studios with our exclusive merchandise collection."
|
||||
tag="Shop"
|
||||
title="Production Packages"
|
||||
description="Choose the perfect package for your short film production needs."
|
||||
tag="Pricing"
|
||||
plans={[
|
||||
{
|
||||
id: "tshirt", title: "Studio T-Shirt", price: "$24.99", period: "each", imageSrc: "http://img.b2bpic.net/free-photo/presentation-white-gray-black-plain-shortsleeve-t-shirts-with-vintage-football-basketball-volleyball-old-sports-leather-boots-top-wooden-shipping-box_346278-1672.jpg", imageAlt: "FrameFlow Studio T-Shirt", button: { text: "Add to Cart", href: "#" },
|
||||
id: "starter", title: "Short Film Starter", price: "$5,000", period: "project", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=8", imageAlt: "Short Film Starter Package", button: { text: "Get Started", href: "#contact" },
|
||||
features: [
|
||||
"Premium cotton blend", "Screen-printed FrameFlow logo", "Available in multiple sizes", "Free shipping on orders over $50"
|
||||
"Pre-production consultation", "1-3 minute film production", "Professional cinematography", "Basic color grading and editing", "Final delivery in multiple formats"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "hoodie", title: "Creator Hoodie", price: "$49.99", period: "each", imageSrc: "http://img.b2bpic.net/free-photo/white-simple-apparel-street-style-men-women-s-clothing-outdoor-shoot_53876-119818.jpg", imageAlt: "FrameFlow Creator Hoodie", button: { text: "Add to Cart", href: "#" },
|
||||
id: "professional", title: "Professional Production", price: "$15,000", period: "project", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=9", imageAlt: "Professional Production Package", button: { text: "Choose Plan", href: "#contact" },
|
||||
features: [
|
||||
"Heavyweight fleece", "Embroidered logo", "Drawstring hood", "Kangaroo pocket design"
|
||||
"Complete pre-production planning", "3-10 minute film production", "Professional cinematography team", "Advanced color grading and VFX", "Sound design and mixing", "Festival-ready delivery package"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "cap", title: "Director Cap", price: "$19.99", period: "each", imageSrc: "http://img.b2bpic.net/free-photo/beach-equipment-yellow-background_1156-26.jpg", imageAlt: "FrameFlow Director Cap", button: { text: "Add to Cart", href: "#" },
|
||||
id: "enterprise", title: "Premium Production", price: "Custom", period: "quote", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=10", imageAlt: "Premium Production Package", button: { text: "Schedule Consultation", href: "#contact" },
|
||||
features: [
|
||||
"Adjustable strap back", "Embroidered patch logo", "UV protection fabric", "Perfect for film enthusiasts"
|
||||
"Dedicated production team", "Unlimited length film production", "Full pre and post-production services", "Premium cinematography and equipment", "Complete VFX and motion graphics", "Professional sound and music composition", "Festival submission support"
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -176,26 +176,26 @@ export default function LandingPage() {
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
title="Client Stories"
|
||||
description="Hear from creators and brands who've partnered with FrameFlow Studios."
|
||||
description="Hear from filmmakers, brands, and creators who've partnered with Penfold Studio for their short film projects."
|
||||
tag="Testimonials"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Chen", handle: "@sarahfilms", testimonial: "FrameFlow transformed my vision into a stunning short film. Their creativity and professionalism exceeded every expectation. Absolutely recommended!", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=1", imageAlt: "Sarah Chen"
|
||||
id: "1", name: "Alexandra Turner", handle: "@alexandrafilms", testimonial: "Penfold transformed our script into a stunning visual masterpiece. Their cinematography and editing expertise elevated our short film beyond our expectations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=11", imageAlt: "Alexandra Turner"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Marcus Thompson", handle: "@marcusthompson_director", testimonial: "Working with FrameFlow Studios was a game-changer. Their attention to detail and collaborative approach made the entire production process smooth and enjoyable.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=2", imageAlt: "Marcus Thompson"
|
||||
id: "2", name: "Marcus Reynolds", handle: "@marcusproductions", testimonial: "Working with Penfold was a game-changer. Their professional production team brought technical excellence and creative vision to every frame of our film.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=12", imageAlt: "Marcus Reynolds"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emma Rodriguez", handle: "@emmaproductions", testimonial: "The team at FrameFlow brought fresh energy and innovative ideas to our commercial project. The final product was beyond what we imagined.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=3", imageAlt: "Emma Rodriguez"
|
||||
id: "3", name: "Elena Sophia", handle: "@elenasophia_films", testimonial: "Penfold's post-production work was exceptional. Their color grading and sound design gave our short film a cinema-quality finish that impressed at festivals.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=13", imageAlt: "Elena Sophia"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Park", handle: "@jamespark_creative", testimonial: "From concept to execution, FrameFlow delivered excellence. Their technical expertise and creative passion shine through in every frame.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=4", imageAlt: "James Park"
|
||||
id: "4", name: "James Mitchell", handle: "@jamesmitchell_filmmaker", testimonial: "Penfold's expertise in film production is unmatched. They understood our creative vision and delivered a short film that exceeded all our expectations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=14", imageAlt: "James Mitchell"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Lisa Okonkwo", handle: "@lisaokonkwo_media", testimonial: "I was impressed by their quick turnaround time without compromising quality. FrameFlow is the partner you want for your film projects.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=5", imageAlt: "Lisa Okonkwo"
|
||||
id: "5", name: "Catherine Woods", handle: "@catherinewood_production", testimonial: "Exceptional collaborative process and outstanding deliverables. Penfold is the production partner you want for serious film projects demanding excellence.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=15", imageAlt: "Catherine Woods"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Daniel Westbrook", handle: "@danielwest_productions", testimonial: "FrameFlow Studios understands the filmmaker's perspective. They listen, innovate, and deliver results that exceed expectations every single time.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-people-avatar-collection_23-2148074529.jpg?_wi=6", imageAlt: "Daniel Westbrook"
|
||||
id: "6", name: "David Foster", handle: "@davidfoster_films", testimonial: "From pre-production to final delivery, Penfold delivered excellence at every stage. Their dedication to quality and cinematic vision is truly exceptional.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=16", imageAlt: "David Foster"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -208,30 +208,30 @@ export default function LandingPage() {
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about our services, process, and collaborations."
|
||||
description="Get answers to common questions about our short film production services and creative process."
|
||||
tag="Help"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How do I submit my film idea to FrameFlow Studios?", content: "You can submit your film idea through our contact form or email us directly at ideas@frameflow.studio. We review all submissions and will get back to you within 5-7 business days with feedback and next steps."
|
||||
id: "1", title: "How do I start a short film project with Penfold Studio?", content: "Getting started is simple. Reach out through our contact form or email us to schedule an initial consultation. We'll discuss your film concept, creative vision, goals, and how we can best support your production needs."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What is your typical production timeline?", content: "Project timelines vary based on complexity and scope. Typically, short film production ranges from 4-12 weeks from pre-production to final delivery. We'll provide a detailed timeline after discussing your specific project requirements."
|
||||
id: "2", title: "What is your typical production timeline?", content: "Project timelines vary based on scope, complexity, and length. Typically, short film projects take 6-16 weeks from pre-production through final delivery. We'll provide a detailed timeline during the consultation phase based on your specific requirements."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Do you accept collaboration and co-production opportunities?", content: "Absolutely! We're always excited about collaborative projects. If you're interested in partnering with FrameFlow Studios, please reach out through our contact page and we'll discuss possibilities together."
|
||||
id: "3", title: "Do you work with international filmmakers and brands?", content: "Absolutely! We've successfully collaborated with filmmakers and clients worldwide. Our flexible production process and digital-first approach make it easy to work across time zones and locations."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What formats do you deliver final projects in?", content: "We deliver in multiple formats including 4K UHD, 1080p HD, and optimized versions for social media platforms. We'll work with you to ensure the final deliverable meets your specific needs and platform requirements."
|
||||
id: "4", title: "What deliverables are included in your production packages?", content: "Deliverables vary by package but typically include: filmed footage, edited cut, color-graded version, sound mix, multiple format deliveries (4K, 1080p, etc.), and documentation. We customize deliverables to meet your specific distribution and exhibition needs."
|
||||
},
|
||||
{
|
||||
id: "5", title: "How much does it cost to produce a short film?", content: "Production costs depend on project scope, length, location, and crew requirements. We offer flexible packages starting from $5,000 for concept-to-completion shorts. Contact us for a custom quote based on your vision."
|
||||
id: "5", title: "Do you offer support for film festival submissions?", content: "Yes! We provide festival submission consultation and support to help your short film reach the right festivals. We ensure all deliverables meet festival technical requirements and can advise on submission strategy."
|
||||
},
|
||||
{
|
||||
id: "6", title: "Can I use FrameFlow footage for commercial purposes?", content: "Yes, all footage and final products created through FrameFlow Studios can be used commercially. Usage rights are outlined in our production agreement. We can discuss specific licensing terms based on your project needs."
|
||||
id: "6", title: "Can you work within my budget constraints?", content: "We believe quality filmmaking should be accessible. We offer flexible packages and can discuss custom solutions to work within your budget while maintaining high production standards. Let's talk about what's possible for your project."
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sales-assistant-being-employed-customer-care-support-job-working-telemarketing-call-center-helpdesk-female-receptionist-with-helpline-service-helping-clients-remote-communication_482257-43021.jpg"
|
||||
imageAlt="FrameFlow FAQ Support"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=17"
|
||||
imageAlt="Penfold Studio Production Support"
|
||||
mediaPosition="left"
|
||||
animationType="smooth"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -243,20 +243,20 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Let's Create Something Amazing"
|
||||
description="Whether you have a film idea, want to collaborate, or have questions about our services, we'd love to hear from you. Reach out and let's bring your vision to life."
|
||||
title="Let's Create Your Next Short Film"
|
||||
description="Whether you have a film concept, need production expertise, or want to collaborate on a creative project, we'd love to explore how we can partner with you. Get in touch and let's bring your vision to the screen."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
{ name: "projectType", type: "text", placeholder: "Project Type (e.g., Short Film, Commercial, Documentary)", required: true },
|
||||
{ name: "budget", type: "text", placeholder: "Budget Range (Optional)", required: false }
|
||||
{ name: "company", type: "text", placeholder: "Your Company (Optional)", required: false },
|
||||
{ name: "filmType", type: "text", placeholder: "Film Type/Genre", required: true }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tell us about your project, ideas, or questions...", rows: 5,
|
||||
name: "message", placeholder: "Tell us about your film project, vision, and production goals...", rows: 5,
|
||||
required: true
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-african-american-businesswoman-drinking-coffee-conference-call-laptop_637285-12927.jpg"
|
||||
imageAlt="Get In Touch With FrameFlow"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASFmwoziiOLtLOdTytWZKKpb37/uploaded-1772578491143-z0kkbb49.jpg?_wi=18"
|
||||
imageAlt="Collaborate With Penfold"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Send Message"
|
||||
@@ -266,20 +266,20 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="FrameFlow Studios"
|
||||
logoText="Penfold Studio"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation", items: [
|
||||
{ label: "Home", href: "#home" },
|
||||
{ label: "Our Work", href: "#work" },
|
||||
{ label: "Projects", href: "#work" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Merch", href: "#merch" }
|
||||
{ label: "Packages", href: "#merch" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
@@ -288,8 +288,8 @@ export default function LandingPage() {
|
||||
title: "Connect", items: [
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "YouTube", href: "https://youtube.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" }
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Vimeo", href: "https://vimeo.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -300,9 +300,9 @@ export default function LandingPage() {
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 FrameFlow Studios. All rights reserved. Creating stories that inspire."
|
||||
copyrightText="© 2025 Penfold Studio. All rights reserved. Crafting exceptional short films and visual narratives."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user